home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / patches / symantec / rtlinc.exe / IOMANIP.H < prev    next >
C/C++ Source or Header  |  1993-05-14  |  1KB  |  37 lines

  1. // IOStreams Package
  2. // Steve Teale April 1992
  3. // Copyright Symantec Corp 1990-1992. All Rights Reserved.
  4.  
  5. #ifndef __IOMANIP_H
  6. #define __IOMANIP_H
  7.  
  8. #include <iomdefs.h>
  9.  
  10. #pragma pack(__DEFALIGN)
  11. ios &_iomanip_resetiosflags(ios&, long);
  12. inline SMANIP<long> resetiosflags(long f) 
  13.     { return SMANIP<long>(_iomanip_resetiosflags,f); }
  14.  
  15. ios &_iomanip_setfill(ios&, int);
  16. inline SMANIP<int> setfill(int filler)
  17.     { return SMANIP<int>(_iomanip_setfill,filler); }
  18.  
  19. ios &_iomanip_setiosflags(ios&, long);
  20. inline SMANIP<long> setiosflags(long f)
  21.     { return SMANIP<long>(_iomanip_setiosflags,f); }
  22.  
  23. ios &_iomanip_setprecision(ios&, int);
  24. inline SMANIP<int> setprecision(int n)
  25.     { return SMANIP<int>(_iomanip_setprecision,n); }
  26.  
  27. ios &_iomanip_setw(ios&, int);
  28. inline SMANIP<int> setw(int w)
  29.     { return SMANIP<int>(_iomanip_setw,w); }
  30.  
  31. ios &_iomanip_setbase(ios&, int);
  32. inline SMANIP<int> setbase(int n)
  33.     { return SMANIP<int>(_iomanip_setbase,n); }
  34.  
  35. #pragma pack()
  36. #endif  // __IOMANIP_H
  37.